type github.com/andybalholm/brotli.command

34 uses

	github.com/andybalholm/brotli (current package)
		backward_references.go#L40: func createBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher hasherHandle, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {
		backward_references_hq.go#L126: func zopfliCostModelSetFromCommands(self *zopfliCostModel, position uint, ringbuffer []byte, ringbuffer_mask uint, commands []command, last_insert_len uint) {
		backward_references_hq.go#L534: func zopfliCreateCommands(num_bytes uint, block_start uint, nodes []zopfliNode, dist_cache []int, last_insert_len *uint, params *encoderParams, commands *[]command, num_literals *uint) {
		backward_references_hq.go#L683: func createZopfliBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher *h10, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {
		backward_references_hq.go#L692: func createHqZopfliBackwardReferences(num_bytes uint, position uint, ringbuffer []byte, ringbuffer_mask uint, params *encoderParams, hasher hasherHandle, dist_cache []int, last_insert_len *uint, commands *[]command, num_literals *uint) {
		block_splitter.go#L36: func countLiterals(cmds []command) uint {
		block_splitter.go#L47: func copyLiteralsToByteArray(cmds []command, data []byte, offset uint, mask uint, literals []byte) {
		block_splitter.go#L97: func splitBlock(cmds []command, data []byte, pos uint, mask uint, params *encoderParams, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit) {
		block_splitter.go#L132: 			var cmd *command = &cmds[i]
		brotli_bit_stream.go#L133: func storeCommandExtra(cmd *command, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1274: func storeMetaBlock(input []byte, start_pos uint, length uint, mask uint, prev_byte byte, prev_byte2 byte, is_last bool, params *encoderParams, literal_context_mode int, commands []command, mb *metaBlockSplit, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1370: func buildHistograms(input []byte, start_pos uint, mask uint, commands []command, lit_histo *histogramLiteral, cmd_histo *histogramCommand, dist_histo *histogramDistance) {
		brotli_bit_stream.go#L1387: func storeDataWithHuffmanCodes(input []byte, start_pos uint, mask uint, commands []command, lit_depth []byte, lit_bits []uint16, cmd_depth []byte, cmd_bits []uint16, dist_depth []byte, dist_bits []uint16, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1411: func storeMetaBlockTrivial(input []byte, start_pos uint, length uint, mask uint, is_last bool, params *encoderParams, commands []command, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1445: func storeMetaBlockFast(input []byte, start_pos uint, length uint, mask uint, is_last bool, params *encoderParams, commands []command, storage_ix *uint, storage []byte) {
		command.go#L188: type command struct {
		command.go#L197: func makeCommand(dist *distanceParams, insertlen uint, copylen uint, copylen_code_delta int, distance_code uint) (cmd command) {
		command.go#L212: func makeInsertCommand(insertlen uint) (cmd command) {
		command.go#L221: func commandRestoreDistanceCode(self *command, dist *distanceParams) uint32 {
		command.go#L236: func commandDistanceContext(self *command) uint32 {
		command.go#L246: func commandCopyLen(self *command) uint32 {
		command.go#L250: func commandCopyLenCode(self *command) uint32 {
		encode.go#L83: 	commands            []command
		encode.go#L435: func writeMetaBlockInternal(data []byte, mask uint, last_flush_pos uint64, bytes uint, is_last bool, literal_context_mode int, params *encoderParams, prev_byte byte, prev_byte2 byte, num_literals uint, commands []command, saved_dist_cache []int, dist_cache []int, storage_ix *uint, storage []byte) {
		encode.go#L712: 	var last_command *command = &s.commands[len(s.commands)-1]
		encode.go#L820: 			new_commands := make([]command, len(s.commands), newsize)
		histogram.go#L183: func buildHistogramsWithContext(cmds []command, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit, ringbuffer []byte, start_pos uint, mask uint, prev_byte byte, prev_byte2 byte, context_modes []int, literal_histograms []histogramLiteral, insert_and_copy_histograms []histogramCommand, copy_dist_histograms []histogramDistance) {
		histogram.go#L193: 		var cmd *command = &cmds[i]
		metablock.go#L90: func recomputeDistancePrefixes(cmds []command, orig_params *distanceParams, new_params *distanceParams) {
		metablock.go#L96: 		var cmd *command = &cmds[i]
		metablock.go#L103: func computeDistanceCost(cmds []command, orig_params *distanceParams, new_params *distanceParams, cost *float64) bool {
		metablock.go#L140: func buildMetaBlock(ringbuffer []byte, pos uint, mask uint, params *encoderParams, prev_byte byte, prev_byte2 byte, cmds []command, literal_context_mode int, mb *metaBlockSplit) {
		metablock.go#L490: func buildMetaBlockGreedyInternal(ringbuffer []byte, pos uint, mask uint, prev_byte byte, prev_byte2 byte, literal_context_lut contextLUT, num_contexts uint, static_context_map []uint32, commands []command, mb *metaBlockSplit) {
		metablock.go#L552: func buildMetaBlockGreedy(ringbuffer []byte, pos uint, mask uint, prev_byte byte, prev_byte2 byte, literal_context_lut contextLUT, num_contexts uint, static_context_map []uint32, commands []command, mb *metaBlockSplit) {